100
How do I specify the indentation of the child items relative to their parents

axPropertiesList1.Indent = 11;
axPropertiesList1.Select(axPropertiesList1.GetOcx());
axPropertiesList1.ExpandAll();

99
How do I get the a property based on its identifier

axPropertiesList1.BeginUpdate();
axPropertiesList1.Add("Root","",EXPROPERTIESLISTLib.EditTypeEnum.Label,null,null,null);
axPropertiesList1.Add("Child 1",1,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,"Root",null).ID = 1234;
axPropertiesList1.Add("Child 2",2,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,"Root",null);
axPropertiesList1.set_ExpandItem("Root",true);
axPropertiesList1.Add("Property",axPropertiesList1.get_Property(1234).Name,EXPROPERTIESLISTLib.EditTypeEnum.Label,null,null,null);
axPropertiesList1.EndUpdate();

98
How do I get the a property based on its index

axPropertiesList1.BeginUpdate();
axPropertiesList1.Add("Root","",EXPROPERTIESLISTLib.EditTypeEnum.Label,null,null,null);
axPropertiesList1.Add("Child 1",1,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,"Root",null);
axPropertiesList1.Add("Child 2",2,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,"Root",null);
axPropertiesList1.set_ExpandItem("Root",true);
axPropertiesList1.Add("Item",axPropertiesList1.get_Item(1).Name,EXPROPERTIESLISTLib.EditTypeEnum.Label,null,null,null);
axPropertiesList1.EndUpdate();

97
How do I get the number or count of the properties being listed

axPropertiesList1.BeginUpdate();
axPropertiesList1.Add("Root","",EXPROPERTIESLISTLib.EditTypeEnum.Label,null,null,null);
axPropertiesList1.Add("Child 1",1,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,"Root",null);
axPropertiesList1.Add("Child 2",2,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,"Root",null);
axPropertiesList1.set_ExpandItem("Root",true);
axPropertiesList1.Add("Count",axPropertiesList1.Count,EXPROPERTIESLISTLib.EditTypeEnum.Label,null,null,null);
axPropertiesList1.EndUpdate();

96
How do I change the name or the caption for a column

axPropertiesList1.HeaderVisible = true;
axPropertiesList1.set_ColumnCaption(0,"Properties");
axPropertiesList1.Select(axPropertiesList1.GetOcx());

95
How do I expand a property

axPropertiesList1.BeginUpdate();
axPropertiesList1.Add("Root","",EXPROPERTIESLISTLib.EditTypeEnum.Label,null,null,null);
axPropertiesList1.Add("Child 1",1,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,"Root",null);
axPropertiesList1.Add("Child 2",2,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,"Root",null);
axPropertiesList1.set_ExpandItem("Root",true);
axPropertiesList1.EndUpdate();

94
How do I change the width for a column

axPropertiesList1.set_ColumnWidth(1,48);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

93
How do I clear or remove all properties
axPropertiesList1.Add("First","A",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Clear();
axPropertiesList1.Refresh();

92
How do I remove a property
axPropertiesList1.Add("First","A",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Remove("First");
axPropertiesList1.Refresh();

91
How do I add a property

axPropertiesList1.Add("First Name","Mihai",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Refresh();

90
How do I change the visual aspect description's spliter, using EBN

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHeaderFilterBarButton,0x1000000);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

89
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
axPropertiesList1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHSThumb,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHSThumbP,0x2000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHSThumbH,0x3000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exVSThumb,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exVSThumbP,0x2000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exVSThumbH,0x3000000);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

88
I've seen that you can change the visual appearance for the scroll bar. How can I do that

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
axPropertiesList1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSBtn,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSBtnP,0x2000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSBtnH,0x3000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHSBack,(uint)ColorTranslator.ToWin32(Color.FromArgb(240,240,240)));
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exVSBack,(uint)ColorTranslator.ToWin32(Color.FromArgb(240,240,240)));
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exScrollSizeGrip,(uint)ColorTranslator.ToWin32(Color.FromArgb(240,240,240)));
axPropertiesList1.HeaderVisible = true;
axPropertiesList1.ColumnAutoResize = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

87
Can I change the forecolor for the tooltip

axPropertiesList1.ToolTipDelay = 1;
axPropertiesList1.ToolTipWidth = 364;
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exToolTipForeColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)));
axPropertiesList1.AllowTooltip = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

86
Can I change the background color for the tooltip

axPropertiesList1.ToolTipDelay = 1;
axPropertiesList1.ToolTipWidth = 364;
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)));
axPropertiesList1.Select(axPropertiesList1.GetOcx());
axPropertiesList1.AllowTooltip = true;

85
Can I change the default border of the tooltip, using your EBN files

axPropertiesList1.ToolTipDelay = 1;
axPropertiesList1.ToolTipWidth = 364;
axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exToolTipAppearance,0x1000000);
axPropertiesList1.Select(axPropertiesList1.GetOcx());
axPropertiesList1.AllowTooltip = true;

84
Is there any option to highligth the column from the cursor - point
axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exCursorHoverColumn,0x1000000);
axPropertiesList1.HeaderVisible = true;

83
How can change the visual appearance for the spin control, using your EBN files

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinUpButtonUp,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinUpButtonDown,0x2000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinDownButtonUp,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinDownButtonDown,0x2000000);
axPropertiesList1.AllowSpin = true;
axPropertiesList1.Add("Spin",50,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Refresh();

82
How can change the visual appearance for the slider or track bar, using your EBN files

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSliderThumb,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSliderRange,(uint)ColorTranslator.ToWin32(Color.FromArgb(210,210,210)));
axPropertiesList1.Add("Slider",50,EXPROPERTIESLISTLib.EditTypeEnum.EditSlider,null,null,null);
axPropertiesList1.Refresh();

81
How do I change the visual aspect of the drop down calendar window, that shows up if I click the drop down filter button, using EBN

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateHeader,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateTodayUp,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateTodayDown,0x2000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateScrollThumb,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateScrollRange,(uint)ColorTranslator.ToWin32(Color.FromArgb(230,230,230)));
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateSeparatorBar,(uint)ColorTranslator.ToWin32(Color.FromArgb(230,230,230)));
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateSelect,0x1000000);
axPropertiesList1.Add("Date","1/1/2001",EXPROPERTIESLISTLib.EditTypeEnum.EditDate,null,null,null);
axPropertiesList1.Refresh();

80
How can change the visual appearance for the button that are visible inside the editors, using your EBN files

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exButtonDown,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exButtonUp,0x2000000);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

79
How can change the visual appearance for the button that shows the drop down editors, using your EBN files

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDropDownButtonUp,0x1000000);
axPropertiesList1.set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDropDownButtonDown,0x2000000);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

78
Can I change the order of the buttons in the scroll bar

axPropertiesList1.set_ScrollOrderParts(EXPROPERTIESLISTLib.ScrollBarEnum.exHScroll,"t,l,r");
axPropertiesList1.set_ScrollOrderParts(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,"t,l,r");
axPropertiesList1.Select(axPropertiesList1.GetOcx());

77
The thumb size seems to be very small. Can I make it bigger

axPropertiesList1.set_ScrollThumbSize(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,128);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

76
How do I enlarge or change the size of the control's scrollbars

axPropertiesList1.ScrollHeight = 18;
axPropertiesList1.ScrollWidth = 18;
axPropertiesList1.ScrollButtonWidth = 18;
axPropertiesList1.ScrollButtonHeight = 18;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

75
How can I display my text on the scroll bar, using a different font

axPropertiesList1.set_ScrollPartCaption(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exThumbPart,"This is just a text");
axPropertiesList1.get_ScrollFont(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll).Size = 12;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

74
How can I display my text on the scroll bar

axPropertiesList1.set_ScrollPartCaption(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exThumbPart,"this is just a text");
axPropertiesList1.Select(axPropertiesList1.GetOcx());

73
How do I assign a tooltip to a scrollbar

axPropertiesList1.set_ScrollToolTip(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,"This is a tooltip being shown when you click and drag the thumb in the vertical scroll bar");
axPropertiesList1.Select(axPropertiesList1.GetOcx());

72
How do I assign an icon to the button in the scrollbar

axPropertiesList1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axPropertiesList1.set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,true);
axPropertiesList1.set_ScrollPartCaption(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,"<img>1</img>");
axPropertiesList1.ScrollHeight = 18;
axPropertiesList1.ScrollButtonWidth = 18;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

71
I need to add a button in the scroll bar. Is this possible

axPropertiesList1.set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,true);
axPropertiesList1.set_ScrollPartCaption(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,"1");
axPropertiesList1.Select(axPropertiesList1.GetOcx());

70
Can I display an additional buttons in the scroll bar

axPropertiesList1.set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,true);
axPropertiesList1.set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB2Part,true);
axPropertiesList1.set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exRightB6Part,true);
axPropertiesList1.set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exRightB5Part,true);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

69
Can I change the font for the tooltip

axPropertiesList1.ToolTipDelay = 1;
stdole.IFontDisp var_StdFont = axPropertiesList1.ToolTipFont;
	var_StdFont.Name = "Tahoma";
	var_StdFont.Size = 14;
axPropertiesList1.AllowTooltip = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

68
How do I call your x-script language

EXPROPERTIESLISTLib.Property var_Property = (axPropertiesList1.ExecuteTemplate("Add(`Bold`,1,1)") as EXPROPERTIESLISTLib.Property);
	var_Property.Bold = true;

67
How do I disable sorting the columns when clicking the control's header
axPropertiesList1.SortOnClick = EXPROPERTIESLISTLib.SortOnClickEnum.exNoSort;
axPropertiesList1.HeaderVisible = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

66
Can I use your EBN files to change the visual appearance for +/- expand - collapse buttons

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
axPropertiesList1.HasButtons = EXPROPERTIESLISTLib.ExpandButtonEnum.exCustom;
axPropertiesList1.set_HasButtonsCustom(false,16777216);
axPropertiesList1.set_HasButtonsCustom(true,33554432);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

65
Can I use my own icons for the +/- ( expand/collapse ) buttons

axPropertiesList1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axPropertiesList1.HasButtons = EXPROPERTIESLISTLib.ExpandButtonEnum.exCustom;
axPropertiesList1.set_HasButtonsCustom(false,1);
axPropertiesList1.set_HasButtonsCustom(true,2);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

64
How do I change visual appearance of the +/- ( expand/collapse ) buttons

axPropertiesList1.HasButtons = EXPROPERTIESLISTLib.ExpandButtonEnum.exWPlus;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

63
How do I browse or select for a com or net object
axPropertiesList1.SelectedObject = (axPropertiesList1.GetOcx() as EXPROPERTIESLISTLib.PropertiesList);

62
How do I expand all properties

axPropertiesList1.Select(axPropertiesList1.GetOcx());
axPropertiesList1.ExpandAll();

61
How do I enable resizing the columns at runtime

axPropertiesList1.ColumnsAllowSizing = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

60
How do I call your x-script language

axPropertiesList1.Template = "Add(`First`,1,1)";

59
How can I enable or disable the control

axPropertiesList1.Enabled = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

58
I've seen that the width of the tooltip is variable. Can I make it larger

axPropertiesList1.ToolTipWidth = 328;
axPropertiesList1.AllowTooltip = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

57
How do I disable showing the tooltip for all control
axPropertiesList1.ToolTipDelay = 0;
axPropertiesList1.AllowTooltip = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

56
How do I let the tooltip being displayed longer

axPropertiesList1.ToolTipPopDelay = 10000;
axPropertiesList1.AllowTooltip = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

55
How do I show the tooltip quicker

axPropertiesList1.ToolTipDelay = 1;
axPropertiesList1.AllowTooltip = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

54
How do I get the handle of the control's window
int var_hWnd = axPropertiesList1.hWnd;

53
How do I show alternate rows in different background color

axPropertiesList1.BackColorAlternate = Color.FromArgb(240,240,240);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

52
How do enable or disable tooltips
axPropertiesList1.AllowTooltip = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

51
How do change the foreground color for the control's header bar, using EBN

axPropertiesList1.HeaderVisible = true;
axPropertiesList1.ForeColorHeader = Color.FromArgb(255,0,0);

50
How do change the visual appearance for the control's header bar, using EBN

axPropertiesList1.HeaderVisible = true;
axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
(axPropertiesList1.GetOcx() as EXPROPERTIESLISTLib.PropertiesList).BackColorHeader = 0x1000000;

49
How do I change the foreground color for the description part in the bottom side of the control

axPropertiesList1.ForeColorDescription = Color.FromArgb(255,0,0);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

48
How do I change the visual appearance for the description part in the bottom side of the control, using your EBN files

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
(axPropertiesList1.GetOcx() as EXPROPERTIESLISTLib.PropertiesList).BackColorDescription = 0x1000000;

47
How do I change the background color for the description part in the bottom side of the control

axPropertiesList1.BackColorDescription = Color.FromArgb(255,0,0);

46
Is there any option to specify the height of the items, before adding them

axPropertiesList1.DefaultItemHeight = 13;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

45
How do I show or hide the connection between categories

axPropertiesList1.MarkCategories = true;
axPropertiesList1.LinkCategories = false;
axPropertiesList1.ShowCategories = true;
axPropertiesList1.ShowPropertyPages = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

44
How do I show or hide the categories

axPropertiesList1.MarkCategories = true;
axPropertiesList1.MarkLineColor = Color.FromArgb(255,0,0);
axPropertiesList1.ShowCategories = true;
axPropertiesList1.ShowPropertyPages = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

43
How do I change the foreground color for categories

axPropertiesList1.ForeColorCategories = Color.FromArgb(255,0,0);
axPropertiesList1.ShowCategories = true;
axPropertiesList1.ShowPropertyPages = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

42
How do I change the background color for categories

axPropertiesList1.BackColorCategories = Color.FromArgb(255,0,0);
axPropertiesList1.ShowCategories = true;
axPropertiesList1.ShowPropertyPages = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

41
How do I sort the control

axPropertiesList1.Select(axPropertiesList1.GetOcx());
axPropertiesList1.Sort(false,null);

40
Is there any option to change the color for the grid lines

axPropertiesList1.HasGridLines = EXPROPERTIESLISTLib.GridLinesEnum.exAllLines;
axPropertiesList1.GridLineColor = Color.FromArgb(255,0,0);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

39
How do I specify the default category

axPropertiesList1.DefaultCategory = "Font";
axPropertiesList1.ShowCategories = true;
axPropertiesList1.ShowPropertyPages = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

38
How do I show or hide the categories

axPropertiesList1.MarkCategories = false;
axPropertiesList1.ShowCategories = true;
axPropertiesList1.ShowPropertyPages = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

37
How do I get a property based on its name

axPropertiesList1.Add("First Name","Mihai",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null).ID = 100;
axPropertiesList1.Add("Last Name","Filimon",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.SelectedProperty = (axPropertiesList1.get_Property(100) as EXPROPERTIESLISTLib.Property);
axPropertiesList1.Refresh();

36
How do I get a property based on its name

axPropertiesList1.Add("First Name","Mihai",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Add("Last Name","Filimon",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.SelectedProperty = (axPropertiesList1.get_Property("Last Name") as EXPROPERTIESLISTLib.Property);
axPropertiesList1.Refresh();

35
How do I maintain performance while making several changes
axPropertiesList1.BeginUpdate();
axPropertiesList1.Add("First",1,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Add("Second",1,EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.EndUpdate();

34
How can I get a list of interfaces that an object implements

System.Diagnostics.Debug.Print( axPropertiesList1.get_Interfaces(axPropertiesList1) );

33
How can I display something else when including the elements of a collection
axPropertiesList1.ShowObjects = true;
axPropertiesList1.ShowItemsCollection = true;
axPropertiesList1.NameItemsCollection = "Name;Caption;Item;Index";
axPropertiesList1.Select(axPropertiesList1.GetOcx());

32
How can I include the elements of a collection
axPropertiesList1.ShowObjects = true;
axPropertiesList1.ShowItemsCollection = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

31
How can I use a spin control to edit numeric values

axPropertiesList1.AllowSpin = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

30
How can I change the control's font

axPropertiesList1.Font.Name = "Tahoma";
axPropertiesList1.Select(axPropertiesList1.GetOcx());

29
How do I show or hide the variables of an object like Font

axPropertiesList1.ShowVariables = true;
axPropertiesList1.Select(axPropertiesList1.Font);

28
How do I show or hide the categories

axPropertiesList1.ShowCategories = true;
axPropertiesList1.ShowPropertyPages = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

27
How do I refresh the control
axPropertiesList1.Add("Last Name","Filimon",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Refresh();

26
How can still display the selected items when the control loses the focus
axPropertiesList1.HideSelection = false;
axPropertiesList1.Add("First Name","Mihai",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Add("Last Name","Filimon",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.SelectedProperty = (axPropertiesList1.get_Property("Last Name") as EXPROPERTIESLISTLib.Property);
axPropertiesList1.Refresh();

25
How do I change the visual appearance effect for the selected item, using EBN

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
(axPropertiesList1.GetOcx() as EXPROPERTIESLISTLib.PropertiesList).SelBackColor = 0x1000000;
axPropertiesList1.SelForeColor = Color.FromArgb(0,0,0);
axPropertiesList1.Add("First Name","Mihai",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Add("Last Name","Filimon",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.SelectedProperty = (axPropertiesList1.get_Property("Last Name") as EXPROPERTIESLISTLib.Property);
axPropertiesList1.Refresh();

24
How do I change the colors for the selected item

axPropertiesList1.SelBackColor = Color.FromArgb(0,0,0);
axPropertiesList1.Add("First Name","Mihai",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Add("Last Name","Filimon",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.SelectedProperty = (axPropertiesList1.get_Property("Last Name") as EXPROPERTIESLISTLib.Property);
axPropertiesList1.Refresh();

23
How do I show or hide the non browseable members
axPropertiesList1.ShowNonBrowsable = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

22
How can I hide or show the object's property pages

axPropertiesList1.ShowPropertyPages = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

21
How do I filter properties when loading
axPropertiesList1.FireIncludeProperty = true;

20
How do I get or set the selected property

axPropertiesList1.Add("First Name","Mihai",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.Add("Last Name","Filimon",EXPROPERTIESLISTLib.EditTypeEnum.Edit,null,null,null);
axPropertiesList1.SelectedProperty = (axPropertiesList1.get_Property("Last Name") as EXPROPERTIESLISTLib.Property);
axPropertiesList1.Refresh();

19
How do I remove "Invalid property value." message
axPropertiesList1.InvalidValueMessage = "";
axPropertiesList1.Select(axPropertiesList1.GetOcx());

18
How do I change the "Invalid property value." message
axPropertiesList1.InvalidValueMessage = "new message";
axPropertiesList1.Select(axPropertiesList1.GetOcx());

17
How do I edit a property as soon as the user selects it
axPropertiesList1.EditOnSelect = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

16
How do I make the control read only

axPropertiesList1.ReadOnly = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

15
How do I show or hide the read only members
axPropertiesList1.ShowReadOnly = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

14
How do I show or hide the grid lines

axPropertiesList1.HasGridLines = EXPROPERTIESLISTLib.GridLinesEnum.exNoLines;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

13
How do I hide the hierarchy lines

axPropertiesList1.HasLines = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

12
How can I add the horizontal scroll bar

axPropertiesList1.ColumnAutoResize = false;
axPropertiesList1.HeaderVisible = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

11
How do I show or hide the control's header bar

axPropertiesList1.HeaderVisible = true;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

10
How do I show or hide the objects members
axPropertiesList1.ShowObjects = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

9
How do I show or hide the restricted members
axPropertiesList1.ShowRestricted = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

8
How do I show or hide the hidden members
axPropertiesList1.ShowHidden = false;
axPropertiesList1.Select(axPropertiesList1.GetOcx());

7
How do I browse or select an object
axPropertiesList1.Select(axPropertiesList1.GetOcx());

6
How do I change the control's foreground color

axPropertiesList1.ForeColor = Color.FromArgb(120,0,120);
axPropertiesList1.Select(axPropertiesList1.GetOcx());

5
How do I change the control's background color

axPropertiesList1.BackColor = Color.FromArgb(200,200,200);

4
How do change the visual appearance for the control's border, using EBN

axPropertiesList1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axPropertiesList1.BorderStyle = (EXPROPERTIESLISTLib.BorderStyleEnum)0x1000000;
axPropertiesList1.BackColor = Color.FromArgb(255,255,255);

3
How do I remove the control's border
axPropertiesList1.BorderStyle = EXPROPERTIESLISTLib.BorderStyleEnum.None;

2
How do I change the height of the description part in the bottom side of the control

axPropertiesList1.DescriptionHeight = 100;

1
How do I hide or show the description part in the bottom side of the control

axPropertiesList1.DescriptionVisible = false;